home *** CD-ROM | disk | FTP | other *** search
/ Aminet 52 / Aminet 52 (2002)(GTI - Schatztruhe)[!][Dec 2002].iso / Aminet / game / patch / WHDIGamesU-Z.lzh / Voyager.lha / voyager-install / Install next >
Text File  |  2001-06-12  |  3KB  |  149 lines

  1. ;****************************
  2.  
  3. (set #sub-dir "")        ;sub directory containing data files
  4. (set #readme-file "README")    ;name of readme file
  5. (set #cleanup "")        ;files to delete after install
  6.  
  7. ;****************************
  8.  
  9. ;----------------------------
  10. ; Checks if given program is reachable via the path
  11. ; if not abort install
  12. ; IN:  #program - to check
  13. ; OUT: -
  14.  
  15. (procedure P_chkrun
  16.   (if
  17.     (= 0 (run ("cd SYS:\nWhich %s" #program)))
  18.     ("")
  19.     (abort ("You must install \"%s\" first !\nIt must be accessible via the path.\nYou can find it in the whdload package." #program))
  20.   )
  21. )
  22.  
  23. ;----------------------------
  24. ; Wait for inserting disk
  25. ; IN:  #AD_disk - name of disk
  26. ; OUT: -
  27.  
  28. ;****************************
  29.  
  30. (if
  31.   (exists #readme-file)
  32.   (if 
  33.     (= 0 (run ("SYS:Utilities/Multiview %s" #readme-file)))
  34.     ("")
  35.     (run ("SYS:Utilities/More %s" #readme-file))
  36.   )
  37. )
  38.  
  39. (set #program "WHDLoad")
  40. (P_chkrun)
  41.  
  42. (set @default-dest
  43.   (askdir
  44.     (prompt ("Where should \"%s\" installed ?\nA drawer \"%s\" will automatically created." @app-name @app-name))
  45.     (help @askdir-help)
  46.     (default @default-dest)
  47.     (disk)
  48.   )
  49. )
  50. (set #dest (tackon @default-dest @app-name))
  51. (if
  52.   (exists #dest)
  53.   (
  54.     (set #choice
  55.       (askbool
  56.         (prompt ("\nDirectory \"%s\" already exists.\n Should it be deleted ?" #dest))
  57.         (default 1)
  58.         (choices "Delete" "Skip")
  59.         (help @askbool-help)
  60.       )
  61.     )
  62.     (if
  63.       (= #choice 1)
  64.       (run ("Delete \"%s\" \"%s.info\" All" #dest #dest))
  65.     )
  66.   )
  67. )
  68. (makedir #dest
  69.   (help @makedir-help)
  70.   (infos)
  71. )
  72.  
  73. ;----------------------------
  74.  
  75. (copyfiles
  76.   (help @copyfiles-help)
  77.   (source ("%s.slave" @app-name))
  78.   (dest #dest)
  79. )
  80. (if
  81.   (exists ("%s.newicon" @app-name))
  82.   (set #icon
  83.     (askchoice
  84.       (prompt "\nWhich icon do you like to install ?\n")
  85.       (default 0)
  86.       (choices "Normal" "NewIcon")
  87.       (help @askchoice-help)
  88.     )
  89.   )
  90.   (set #icon 0)
  91. )
  92. (select #icon
  93.   (set #icon ("%s.inf" @app-name))
  94.   (set #icon ("%s.newicon" @app-name))
  95. )
  96. (copyfiles
  97.   (help @copyfiles-help)
  98.   (source #icon)
  99.   (newname ("%s.info" @app-name))
  100.   (dest #dest)
  101. )
  102. (if
  103.   (exists #readme-file)
  104.   (copyfiles
  105.     (help @copyfiles-help)
  106.     (source #readme-file)
  107.     (dest #dest)
  108.   )
  109. )
  110. (if
  111.   (exists ("%s.info" #readme-file))
  112.   (copyfiles
  113.     (help @copyfiles-help)
  114.     (source ("%s.info" #readme-file))
  115.     (dest #dest)
  116.   )
  117. )
  118. (if
  119.   (= #sub-dir "")
  120.   ("")
  121.   (
  122.     (set #dest (tackon #dest #sub-dir))
  123.     (makedir #dest
  124.       (help @makedir-help)
  125.     )
  126.   )
  127. )
  128.  
  129. ;----------------------------
  130.  
  131. (askdisk 
  132.   (prompt ("Insert Voyager disk in any drive"))
  133.   (dest "Copylock Amiga Key Disk")
  134.   (help "Insert the original Voyager disk in any drive!!")
  135. )
  136.  
  137. (copyfiles
  138.   (help @copyfiles-help)
  139.   (source ("Copylock Amiga Key Disk:DJG"))
  140.   (dest #dest)
  141. )
  142.  
  143. ;----------------------------
  144.  
  145. (run ("Delete %s ALL QUIET FORCE" #cleanup))
  146.  
  147. (exit)
  148.  
  149.